home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / equiptype.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  33 lines

  1. /* RCSVER $Id: equiptype.sql,v 1.2 1999-02-24 11:28:09-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        equiptype.sql
  6. * Date:        12/28/1998
  7. * memo:        Randy Wood
  8. * Description:     Create the equiptype table. This table contains all
  9. *        equipment type definitions, including buses, farebox
  10. *        equipment, and programs.
  11. * Changes:
  12. ************************************************************************* */
  13. /* EQUIPTYPE
  14.     100    Farebox        1000000 - 1009999
  15.     101    Cashbox        1010000 - 1019999
  16.     102    Bus
  17.     103    Garage
  18.     104    Moneyroom
  19.     105    Truck
  20.     106    Money receptacle
  21.     107    Computer
  22.     108     Wayfarer ticket unit
  23. */
  24. CREATE TABLE equiptype
  25. (
  26.     equip_type    NUMBER(38),        /* Type of equipment */
  27.     is_optional    NUMBER(1) DEFAULT 0,    /* Boolean - optional ? */
  28.     descr        VARCHAR2(40),        /* Description of equiptype */
  29.     beg_glid    NUMBER(38),        /* Beginning ID for this type */
  30.     end_glid    NUMBER(38),        /* Ending ID for this type */
  31.     CONSTRAINT pk_equiptype PRIMARY KEY (equip_type)
  32. );
  33.